home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1312.dms / var1312.adf / HP11 / PROG_CODES.H < prev    next >
C/C++ Source or Header  |  1991-06-11  |  479b  |  17 lines

  1. /* There are 6 different ways in which program lines are displayed. cf io.c */
  2. #define ONECODE 0
  3. #define TWOCODE 1
  4. #define TWOCODE_9 2
  5. #define TWOCODE_PT 3
  6. #define THREECODE 4
  7. #define THREECODE_PT 5
  8.  
  9. struct KeyCode {
  10.    BYTE Type; /* The display method */
  11.    BYTE c1, c2, c3; /* The codes to display */
  12. };
  13.  
  14. /* This array is indexed by the instruction code (from codes.h). Therefore, if
  15.   that file is changed, the codes must also be changed. */
  16. extern struct KeyCode keycodes[];
  17.